home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 62 / Quick PC 62.iso / I386 / IIS5_01.CAB / IIS_Includes_VBScript.asp < prev    next >
Encoding:
Text File  |  1998-05-29  |  939 b   |  33 lines

  1. <%@ LANGUAGE = VBScript %>
  2. <% Option Explicit %>
  3.  
  4. <!*************************
  5. This sample is provided for educational purposes only. It is not intended to be 
  6. used in a production environment, has not been tested in a production environment, 
  7. and Microsoft will not provide technical support for it. 
  8. *************************>
  9.  
  10. <HTML>
  11.     <HEAD>
  12.         <TITLE>Server Side Includes</TITLE>
  13.     </HEAD>
  14.  
  15.     <BODY BGCOLOR="White" TOPMARGIN="10" LEFTMARGIN="10">
  16.         
  17.         <!-- Display header. -->
  18.  
  19.         <FONT SIZE="4" FACE="ARIAL, HELVETICA">
  20.         <B>Server Side Includes</B></FONT><BR>   
  21.  
  22.  
  23.         <P>Server-Side Includes can be done using the
  24.         #Include File command. The below text in bold
  25.         has been generated with a Server-Side Include:
  26.  
  27.         <P> <!--#INCLUDE FILE="HeaderInfo.asp"--> </P>
  28.         
  29.         <P>Include files can be referenced using either
  30.         absolute or relative paths.<BR>
  31.     </BODY>
  32. </HTML>
  33.